home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #12 / Amiga Plus CD - 2002 - No. 12.iso / Tools / Development / source-highlight-1.6.1 / tests / test_comments.py < prev    next >
Text File  |  2002-11-17  |  662b  |  43 lines

  1. #! /usr/bin/python
  2.  
  3. """
  4. This is a test for the handling of
  5. comments and string literals in Python
  6. """
  7.  
  8. "And this is a string meant as comment"
  9.  
  10. def test():        # The test routine
  11.   '''
  12.   It does nothing but printing different strings
  13.   '''
  14.  
  15.   print "This is the first test",
  16.   print 'and this the second'
  17.  
  18.   'Here start the multi-lined outputs'
  19.   print """
  20. Here we have
  21. a multi-line
  22. string.
  23. """
  24.   print '''
  25. And this is a
  26. second one
  27. '''
  28.   # End of printing
  29.   pass            # A NOP at last
  30.  
  31. """
  32. """
  33. 'And here the fun starts'
  34. test()
  35.  
  36. table = { 'S'  : ['5'],
  37.  'a'  : ['4','a','@'],
  38.  'b'  : ['8','B'],
  39.  "ps" : ["Pz"],
  40.  'ss' : ['5S','S5'],
  41.  'es' : ['3Z','3z'],
  42.  'ou' : ['00'] }
  43.